ResolveNodeRequest

data class ResolveNodeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectGroup: String?, executionContextId: ExecutionContextId?)

Represents request frame that can be used with DOM#resolveNode operation call.

Resolves the JavaScript node object for a given NodeId or BackendNodeId.

See also

Constructors

ResolveNodeRequest
Link copied to clipboard
fun ResolveNodeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectGroup: String? = null, executionContextId: ExecutionContextId? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Backend identifier of the node to resolve.
executionContextId
Link copied to clipboard
val executionContextId: ExecutionContextId? = null
Execution context in which to resolve the node.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Id of the node to resolve.
objectGroup
Link copied to clipboard
val objectGroup: String? = null
Symbolic group name that can be used to release multiple objects.

Sources

jvm source
Link copied to clipboard